Xceed Toolkit Plus for WPF v5.1 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit.Chart Namespace / DataPointsList<T> Class
Type is Datapoint.
Members


In This Topic
    DataPointsList<T> Class
    In This Topic
    Represents a list of the DataPoint objects.
    Syntax
    'Declaration
     
    <DefaultMemberAttribute("Item")>
    Public Class DataPointsList(Of T As DataPoint) 
       Inherits ListBase(Of T)
    'Usage
     
    Dim instance As DataPointsList(Of T)
    [DefaultMember("Item")]
    public class DataPointsList<T> : ListBase<T> 
    where T: DataPoint
    Type Parameters
    T
    Type is Datapoint.
    Inheritance Hierarchy

    System.Object
       Xceed.Wpf.Toolkit.Chart.ListBase<T>
          Xceed.Wpf.Toolkit.Chart.DataPointsList<T>

    Public Constructors
     NameDescription
    Public ConstructorInitializes a new instance of the DataPointsList class.  
    Top
    Public Properties
     NameDescription
    Public PropertyGets the number of items in the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public PropertyGets whether the ListBase is read-only. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public PropertyOverridden. Retrieves or assigns a DataPoint in a collection.  
    Top
    Public Methods
     NameDescription
    Public MethodAdds an item to the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodAdds the items of the specified collection to the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodRemoves all items from the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodDetermines whether an element is in the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodCopies the entire ListBase to a compatible one-dimensional array, starting at the specified index of the target array. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodOverridden. Returns an enumerator that iterates through a collection.  
    Public MethodDetermines the index of a specific item in the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodInserts an item into the ListBase at the specified index. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodRemoves the first occurrence of a specific object from the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodRemoves the element at the specified index of the ListBase. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public MethodCopies the elements of the ListBase to a new array. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Top
    Protected Methods
     NameDescription
    Protected MethodOverridden. Gets the number of the items in the list.  
    Protected MethodCalled before a list is modified, raising the BeforeListChanged event. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Protected MethodRaises the CollectionChanged event.  
    Protected MethodCalled after a list has been modified, raising the ListChanged event. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Top
    Public Events
     NameDescription
    Public EventRaised before the list is changed. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Public EventCalled when the collection changes.  
    Public EventRaised after the list is changed. (Inherited from Xceed.Wpf.Toolkit.Chart.ListBase<T>)
    Top
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also